home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / shapes / crater.vx < prev    next >
Text File  |  1979-12-31  |  444b  |  25 lines

  1. /* --------------------------------- crater.vx ------------------------------ */
  2.  
  3. /*
  4.  * This is part of the flight simulator 'fly8'.
  5.  * Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
  6.  *
  7.  */
  8.  
  9. /*
  10.  * Object shape: O_CRATER.
  11. */
  12.  
  13. #include "shape.h"
  14.  
  15. #define    S    2
  16. static VERTEX vx_crater[] = {
  17.     {{ 0,  S,  0}, V_MOVE},
  18.     {{-S,  0,  0}, V_DRAW},
  19.     {{ 0, -S,  0}, V_DRAW},
  20.     {{ S,  0,  0}, V_DRAW},
  21.     {{ 0,  S,  0}, V_DRAW},
  22.  
  23.     {{ 0,  0,  0}, V_EOF}
  24. };
  25.